home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20030409-20031118 / 000260_fdc@sesame.cc.columbia.edu_Sat Sep 6 12:27:46 EDT 2003.msg < prev    next >
Text File  |  2020-01-01  |  3KB  |  65 lines

  1. Article: 14501 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news-not-for-mail
  3. From: fdc@sesame.cc.columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: dial-command
  6. Date: 6 Sep 2003 12:27:41 -0400
  7. Organization: Columbia University
  8. Lines: 48
  9. Message-ID: <bjd1tt$q9f$1@sesame.cc.columbia.edu>
  10. References: <3F590E9E.2080706@netscape.net>
  11. NNTP-Posting-Host: sesame.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1062865662 13642 128.59.59.56 (6 Sep 2003 16:27:42 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 6 Sep 2003 16:27:42 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:14501
  16.  
  17. In article <3F590E9E.2080706@netscape.net>,
  18. Jun Zhang  <nugulus@netscape.net> wrote:
  19. : When I use the "dial number", kermit will try atdnumber, instead of 
  20. : atdtnumber. How can I change this behavior?
  21. :
  22. Kermit does not know if your telephone connection supports tone dialing,
  23. so by default it does not specify a dialing method.  Most people have
  24. configured their modems for Tone or Pulse dialing, as appropriate, and
  25. saved the configuration.  Furthermore, if you have never configured your
  26. modem, its default dialing method is probably Pulse, which works
  27. everywhere, and therefore Kermit's default is appropriate.
  28.  
  29. : BTW, I can manually do "set 
  30. : modem dial-command atdt%s\{13}, in a kermit session. In the script 
  31. : dialout (downloaded), I added the line, and it didn't work.
  32. The order of commands can make a differnce; I would have to see the
  33. script to explain this.  Also watch out for peculariarities of certain
  34. modems, such as:
  35.  
  36.   http://www.columbia.edu/kermit/ckcbwr.html#x6.6
  37.  
  38. For more modem dialing hints and tips, read all of Section 6 of the
  39. document referenced above.
  40.  
  41. Meanwhile, you didn't say which Kermit program or version you have, but
  42. in general, the commands to set up a call are:
  43.  
  44.   set modem type <name-of-modem>
  45.   set port <name-of-serial-port-device>
  46.   set speed 57600 ; or other speed
  47.   set dial method tone
  48.   dial <phone-number>
  49.  
  50. If you have Kermit 95 on Windows, the "set modem type" and "set port"
  51. commands might need to be replaced by:
  52.  
  53.   set port tapi <control-panel-modem-name>
  54.  
  55. If you wish, you can use the following command (before the DIAL command)
  56. to watch the dialog between Kermit and the modem:
  57.  
  58.   set dial display on
  59.  
  60. If you have Kermit 95, you can also set all this up in the Dialer GUI
  61. dialogs, as explained in Help -> Kermit 95 Manual.
  62.  
  63. - Frank
  64.